CloneContents Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Makes a deep clone of this BigList. A new BigList is created with a clone of each element of this set, by calling ICloneable.Clone on each element. If T is a value type, then this method is the same as Clone.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public BigList<T> CloneContents()
Visual Basic (Declaration)
Public Function CloneContents As BigList(Of T)
Visual C++
public:
BigList<T>^ CloneContents ()

Return Value

The cloned set.

Remarks

If T is a reference type, it must implement ICloneable. Otherwise, an InvalidOperationException is thrown.

If T is a reference type, cloning the list takes time approximate O(N), where N is the number of items in the list.

Exceptions

ExceptionCondition
System..::InvalidOperationExceptionT is a reference type that does not implement ICloneable.

See Also